home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / finger_overflow.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  79 lines

  1. #
  2. # This script was written by Michel Arboi <mikhail@nessus.org>
  3. #
  4. # It is released under the GNU Public Licence 
  5.  
  6. if(description)
  7. {
  8.  script_id(17141);
  9.  script_version ("$Revision");
  10.  script_bugtraq_id(2);
  11.  name["english"] = "fingerd buffer overflow";
  12.  
  13.  script_name(english:name["english"]);
  14.  desc["english"] = "
  15. Nessus was able to crash the remote finger daemon by sending a too long 
  16. request. 
  17.  
  18. This flaw is probably a buffer overflow and might be exploitable
  19. to run arbitrary code on this machine.
  20.  
  21. Solution : Disable your finger daemon, apply the latest patches from your 
  22. vendor, or a safer software.
  23. Risk factor : High";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Sends a long command to fingerd";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  script_category(ACT_DESTRUCTIVE_ATTACK);
  31.  script_copyright(english:"This script is Copyright (C) 2005 Michel Arboi");
  32.  
  33.  family["english"] = "Finger abuses";
  34.  script_family(english:family["english"]);
  35.  script_dependencie("doublecheck_std_services.nasl");
  36.  script_require_ports("Services/finger", 79);
  37.  exit(0);
  38. }
  39.  
  40. #
  41. include('global_settings.inc');
  42.  
  43. port = get_kb_item("Services/finger");
  44. if(!port) port = 79;
  45. if(! get_port_state(port)) exit(0);
  46.  
  47. soc = open_sock_tcp(port);
  48. if(! soc) exit(0);
  49.  
  50. send(socket: soc, data: crap(4096)+ '\r\n');
  51. r = recv(socket:soc, length:65535);
  52.  
  53. close(soc);
  54.  
  55. sleep(1);
  56.  
  57. soc = open_sock_tcp(port);
  58. if(! soc) { security_hole(port); exit(0); }
  59. else close(soc);
  60.  
  61. if (report_paranoia > 1 && ! r)
  62. security_hole(port: port, data:
  63. "The remote finger daemon abruptly closes the connection
  64. when it receives a too long request.
  65. It might be vulnerable to an exploitable buffer overflow; 
  66. so a cracker might run arbitrary code on this machine.
  67.  
  68. *** Note that Nessus did not crash the service, so this
  69. *** might be a false positive.
  70. *** However, if the finger service is run through inetd
  71. *** (a very common configuration), it is impossible to 
  72. *** reliably test this kind of flaw.
  73.  
  74. Solution : Disable your finger daemon,
  75.      apply the latest patches from your vendor,
  76.      or a safer software.
  77.  
  78. Risk factor : High");
  79.